您可以通过Background属性修改PlotArea的外观,同时可以使用Stroke/StrokeThickness属性修改绘图区的边框。绘图区通过行/列进行引用(和Grid中访问元素相同)。
下面的示例演示如何修改绘图区外观:
XAML |
拷贝代码
|
---|---|
<c1chart:ChartView.PlotAreas> <!-- row=0 col=0 --> <c1chart:PlotArea Background="#10FF0000" Stroke="Red" /> <!-- row=1 col=0 --> <c1chart:PlotArea Row="1" Background="#1000FF00" /> <!-- row=0 col=1 --> <c1chart:PlotArea Column="1" Background="#100000FF" /> <!-- row=1 col=1 --> <c1chart:PlotArea Row="1" Column="1" Background="#10FFFF00" Stroke="Yellow" /> </c1chart:ChartView.PlotAreas> |